home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / CD32 / CD32_Support / examples / SA_Examples / nonvolatile / smakefile < prev    next >
Encoding:
Makefile  |  1996-03-17  |  1.2 KB  |  37 lines

  1. .c.o:
  2.     sc $(CFLAGS) $<
  3.  
  4. .asm.o:
  5.     asm $(AFLAGS) $<
  6.  
  7. CFLAGS = OPT OptInL OptInLocal nostkchk noversion mccons
  8. LFLAGS = sc sd stripdebug
  9.  
  10. LIBS = lib:sc.lib lib:amiga.lib lib:debug.lib
  11.  
  12. all: DeleteNV GetCopyNV GetNVInfo GetNVList SetNVProtection StoreNV WipeNV StuffNV
  13.  
  14. DeleteNV: DeleteNV.o DeleteNV_rev.o
  15.     slink lib:c.o DeleteNV.o DeleteNV_rev.o to $@ lib $(LIBS) $(LFLAGS)
  16.  
  17. GetCopyNV: GetCopyNV.o GetCopyNV_rev.o
  18.     slink lib:c.o GetCopyNV.o GetCopyNV_rev.o to $@ lib $(LIBS) $(LFLAGS)
  19.  
  20. GetNVInfo: GetNVInfo.o GetNVInfo_rev.o
  21.     slink lib:c.o GetNVInfo.o GetNVInfo_rev.o to $@ lib $(LIBS) $(LFLAGS)
  22.  
  23. GetNVList: GetNVList.o GetNVList_rev.o
  24.     slink lib:c.o GetNVList.o GetNVList_rev.o to $@ lib $(LIBS) $(LFLAGS)
  25.  
  26. SetNVProtection: SetNVProtection.o XStrToULong.o SetNVProtection_rev.o
  27.     slink lib:c.o SetNVProtection.o XStrToULong.o SetNVProtection_rev.o to $@ lib $(LIBS) $(LFLAGS)
  28.  
  29. StoreNV: StoreNV.o StoreNV_rev.o
  30.     slink lib:c.o StoreNV.o StoreNV_rev.o to $@ lib $(LIBS) $(LFLAGS)
  31.  
  32. WipeNV: WipeNV.o WipeNV_rev.o
  33.     slink lib:c.o WipeNV.o WipeNV_rev.o to $@ lib $(LIBS) $(LFLAGS)
  34.  
  35. StuffNV: StuffNV.o bsprintf.o StuffNV_rev.o
  36.     slink lib:c.o StuffNV.o bsprintf.o StuffNV_rev.o to $@ lib $(LIBS) $(LFLAGS)
  37.